home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / F_J / ICR2_12.ZIP / SAVEALL.BAT < prev    next >
DOS Batch File  |  1996-06-21  |  572b  |  29 lines

  1. @echo off
  2. if .%1. == .. goto nospec
  3. if not exist %1\NUL goto nodir
  4.  
  5. rem
  6. rem Save the current championship season
  7. rem
  8.  
  9. if exist season.bin copy season.bin %1
  10.  
  11. rem
  12. rem For each track, save that track's data
  13. rem
  14.  
  15. cd tracks
  16. for %%t in (austral clevland detroit elkhart laguna longbch michigan midohio) do call ..\savetrk %1 %%t
  17. for %%t in (mlwaukee nazareth nwenglnd phoenix portland toronto vancouvr) do call ..\savetrk %1 %%t
  18. cd ..
  19. goto end
  20.  
  21. :nospec
  22. echo usage: saveall [directory]
  23. goto end
  24.  
  25. :nodir
  26. echo Error: the directory %1 must exist.
  27.  
  28. :end
  29.